home *** CD-ROM | disk | FTP | other *** search
- /*
- cvabout.h
-
- "Bouncing" about box
-
- C++/Views 2.0 Demo
- Copyright (c) 1992, by Liant Software Corp.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #ifndef cvabout_h
- #define cvabout_h
-
- #include "dialog.h"
-
- class VButton;
- class VTimer;
- class Bouncer;
-
- class BounceAbout : public VDialog {
- private:
- VOrdCollect bouncers;
- VTimer *timer;
-
- int count;
-
- public:
- BounceAbout(VWindow *pwin);
- ~BounceAbout();
-
- boolean free();
-
- boolean paint();
- boolean startBouncing();
- boolean bounceThem();
- boolean aboutBtn(VButton *);
- };
-
- #endif /* cvabout_h */
-
-